home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February (DVD) / PCWorld_2008-02_DVD.iso / v cisle / PHP / PHP.exe / xampp-win32-1.6.5-installer.exe / htdocs / xampp / langsettings.php < prev    next >
Encoding:
PHP Script  |  2007-12-20  |  394 b   |  15 lines

  1. <?php
  2.         $lang=@file_get_contents("lang.tmp");
  3.         @include("lang/languages.php");
  4.         @include("lang/en.php");
  5.         @include("lang/$lang.php");
  6.         if($lang=="zh")
  7.         {
  8.                 header("Content-Type: text/html; charset=gb2312");
  9.         }
  10.         else if($lang=="jp")
  11.         {
  12.                 header("Content-Type: text/html; charset=shift-jis");
  13.         }
  14. ?>
  15.